home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / modelers / geomview / source.lha / Geomview / src / bin / pssnap / common / pssnap.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-15  |  316 b   |  22 lines

  1. /*
  2.  * pssnap.h
  3.  * author:  Celeste Fowler
  4.  * date:  June 12, 1992
  5.  */
  6.  
  7. #ifndef PSSNAP
  8. #define PSSNAP
  9.  
  10. #define PS_COLOR 1
  11.  
  12. #define PS_EDGES 2
  13. #define PS_FACES 4
  14.  
  15. Geom *PolyProject(Geom *o, Camera *c);
  16.  
  17. void PolyToPSInit(FILE *outfile, int flag);
  18. void PolyToPS(Geom *o, FILE *outfile, int flag);
  19.  
  20. #endif /* PSSNAP */
  21.  
  22.